PROCEDURE ImportSymFile (f: Files.File; VAR s: Stores.Store);
PROCEDURE ShowInterface;
END DevBrowser.
The browser shows the interface of a module or of an item in a module. It extract the necessary interface information out of the module's symbol file. A symbol file contains only minimal information, it doesn't contain comments nor does it retain information about the textual order in which a module's item have been defined (their display is sorted alphabetically). For records, the browser only shows newly introduced fields and procedures (or procedures redefined with covariant function results). You can follow the record type hiearchy to the base type by applying the browser command again on the base type name in the record declaration.
PROCEDURE ImportSymFile (f: Files.File; VAR s: Stores.Store)
This procedure is installed upon startup of Oberon/F as an importer for symbol files (-> Converters). The importer converts the symbol file into a textual browser output.
PROCEDURE ShowInterface
Guard: TextCmds.SelectionGuard
If a module name is selected, this command shows the complete definition of the module. If a qualident is selected, only the definition of the corresponding item is shown.